home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / teco.zip / ABORT.C next >
C/C++ Source or Header  |  1986-07-15  |  252b  |  14 lines

  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. abort()
  6. {
  7. #include "teco.h"
  8.  
  9.     fclose(in);                /* Close inp file */
  10.     fclose(ot);                /* Close out file */
  11.     unlink(otpath);                /* Erase tmp file */
  12.     exit(0);                /*  ...sys return */
  13. }
  14.